home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / util / boot / avwm.lzh / avwm-0.4 / jumptable.h < prev    next >
C/C++ Source or Header  |  1994-08-08  |  390b  |  24 lines

  1. /* jumptable.h */
  2.  
  3. struct LVOTable
  4. {
  5.     LONG lt_LVO;
  6.     struct Library *lt_LibBase;
  7.     ULONG lt_oldFunction;
  8.     ULONG lt_newFunction;
  9. };
  10.  
  11. struct JumpTable
  12. {
  13.     struct SignalSemaphore jt_Semaphore;
  14.     UWORD pad_word;
  15.     struct Task *jt_Owner;
  16.     UBYTE jt_Function[NUMBEROFFUNCTIONS * 6];
  17. };
  18.  
  19. /* Prototypes */
  20.  
  21. BOOL InstallWedge (VOID);
  22. BOOL RemoveWedge (VOID);
  23. struct JumpTable *GetJumpTable (UBYTE *name);
  24.